home *** CD-ROM | disk | FTP | other *** search
- program TCPService;
-
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Runtime.Remoting.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.ServiceProcess.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Configuration.Install.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\system.drawing.dll'}
-
- uses
- System.ServiceProcess,
- System.Reflection,
- uTCPIntf in 'uTCPIntf.pas',
- uTCPService in 'uTCPService.pas' {uTCPService.TNTService: System.ServiceProcess.ServiceBase},
- uTCPServInst in 'uTCPServInst.pas' {uTCPServInst.TNTServiceInstaller: System.Configuration.Install.Installer};
-
- [assembly: AssemblyTitle ('NT TCP Service')]
- [assembly: AssemblyDescription('NT TCP Service')]
- [assembly: AssemblyCompany ('Ultimate Software, Inc.')]
- [assembly: AssemblyProduct ('TCP Service Demo')]
- [assembly: AssemblyCopyright ('⌐ 2003 Ultimate Software, Inc.')]
- [assembly: AssemblyTrademark ('ULTIPRO')]
- [assembly: AssemblyVersion ('1.0.0.0')]
-
- {$R Ultimate.res}
-
- [STAthread]
- begin
- NTService := TNTService.Create;
- System.ServiceProcess.ServiceBase.Run([NTService]);
- end.
-